home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
a_utils
/
perl
/
msds-prl
/
bcdsprl4.zoo
/
glob.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-11-28
|
291b
|
21 lines
/*
* Globbing for MS-DOS. Relies on the expansion done by the library
* startup code. (dds)
*/
#include <stdio.h>
#include <string.h>
main(int argc, char *argv[])
{
register i;
for (i = 1; i < argc; i++) {
fputs(strlwr(argv[i]), stdout);
putchar(0);
}
}